home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 September / september_2000.iso / intercd / root / ^Linux / Jooky / squiggly.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-01  |  217 b   |  13 lines

  1. #include "defines.h"
  2. #include "includes.h"
  3.  
  4. void squiggly()
  5. {
  6.     move(SQUIGLINE,0);
  7.     clrtoeol();
  8.     mvaddnstr(SQUIGLINE,(COLS/2)-1,&squig[squigpos],1);
  9.     refresh();
  10.     ++squigpos;
  11.     if (squigpos>3) squigpos=0;
  12. };
  13.